home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Itch / work_info / WImage.dcr / 00005_BabyPic Parent.ls < prev    next >
Encoding:
Text File  |  1999-03-07  |  391 b   |  24 lines

  1. property sp, cst, pos
  2.  
  3. on new me, asp, aPos
  4.   me.sp = asp + 1
  5.   puppetSprite(me.sp, 1)
  6.   me.cst = the member of sprite me.sp
  7.   me.pos = aPos
  8.   return me
  9. end
  10.  
  11. on SwapCast me, aMem
  12.   me.cst = aMem
  13.   set the member of sprite the sp of me to me.cst
  14. end
  15.  
  16. on UpdatePos me, aPos
  17.   tempPos = me.pos + aPos
  18.   me.pos = tempPos
  19. end
  20.  
  21. on DrawtoStage me
  22.   set the loc of sprite the sp of me to me.pos
  23. end
  24.